home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / paste-as-pattern.scm < prev    next >
Text File  |  2009-12-15  |  2KB  |  63 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; script-fu-paste-as-pattern
  5. ; Based on select-to-pattern by Cameron Gregory, http://www.flamingtext.com/
  6. ;
  7. ; This program is free software; you can redistribute it and/or modify
  8. ; it under the terms of the GNU General Public License as published by
  9. ; the Free Software Foundation; either version 2 of the License, or
  10. ; (at your option) any later version.
  11. ;
  12. ; This program is distributed in the hope that it will be useful,
  13. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. ; GNU General Public License for more details.
  16. ;
  17. ; You should have received a copy of the GNU General Public License
  18. ; along with this program; if not, write to the Free Software
  19. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21.  
  22. (define (script-fu-paste-as-pattern name filename)
  23.   (let* ((pattern-image (car (gimp-edit-paste-as-new)))
  24.          (pattern-draw 0)
  25.          (path 0))
  26.  
  27.     (if (= TRUE (car (gimp-image-is-valid pattern-image)))
  28.       (begin
  29.         (set! pattern-draw (car (gimp-image-get-active-drawable pattern-image)))
  30.         (set! path (string-append gimp-directory
  31.                              "/patterns/"
  32.                              filename
  33.                              (number->string pattern-image)
  34.                              ".pat"))
  35.        
  36.         (file-pat-save RUN-NONINTERACTIVE
  37.                        pattern-image pattern-draw path path
  38.                        name)
  39.        
  40.         (gimp-image-delete pattern-image)
  41.        
  42.         (gimp-patterns-refresh)
  43.         (gimp-context-set-pattern name)
  44.       )
  45.       (gimp-message _"There is no image data in the clipboard to paste.")
  46.     )
  47.   )
  48. )
  49.  
  50. (script-fu-register "script-fu-paste-as-pattern"
  51.   _"New _Pattern..."
  52.   _"Paste the clipboard contents into a new pattern"
  53.   "Michael Natterer <mitch@gimp.org>"
  54.   "Michael Natterer"
  55.   "2005-09-25"
  56.   ""
  57.   SF-STRING _"Pattern name" "My Pattern"
  58.   SF-STRING _"File name"    "mypattern"
  59. )
  60.  
  61. (script-fu-menu-register "script-fu-paste-as-pattern"
  62.                          "<Image>/Edit/Paste as")
  63.